home *** CD-ROM | disk | FTP | other *** search
/ ftp.mactech.com 2010 / ftp.mactech.com.tar / ftp.mactech.com / machack / Hacks97 / WarriorsProgress.sit / Warrior’s Progress / source code / Source / Libraries / Announcer / UserState.h < prev    next >
Text File  |  1997-06-28  |  225b  |  20 lines

  1. // UserState.h
  2.  
  3. #ifndef UserState_h
  4. #define UserState_h
  5.  
  6. #ifndef Announcer_h
  7. #include "Announcer.h"
  8. #endif
  9.  
  10. class UserState: public Announcer
  11.   {
  12.     private:
  13.         UserState()        {}
  14.     
  15.     public:
  16.         static UserState& The();
  17.   };
  18.  
  19. #endif
  20.